In [1]:
from plotly import __version__
In [2]:
from plotly.offline import download_plotlyjs, init_notebook_mode, iplot
In [3]:
print __version__
1.9.0
In [4]:
init_notebook_mode()
In [5]:
iplot([{"x": [1, 2, 3], "y": [3, 1, 6]}])
Drawing...
In [ ]: